home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / WIN_PRO / DS-1.ZIP;1 / CONFIG.ZIP / COMMON.MKE < prev    next >
Encoding:
Text File  |  1992-02-14  |  831 b   |  31 lines

  1. # OS/2 Microsoft 6.0 common
  2.  
  3. AS=masm
  4. ASFLAGS= -l -mx -w0
  5. CFLAGS= -AL -c -Oiltn -Gm -Lp -G2 -Aw -FPi
  6. CC=cl
  7. LDFLAGS=
  8.  
  9. OBJS=    long.obj getopt.obj memory.obj time.obj filepart.obj identify.obj \
  10.     strtbl.obj rtdb.obj clocal.obj alloc.obj literals.obj rswitch.obj \
  11.     redirerr.obj rutil.obj
  12.  
  13. HDRS=    ..\h\define.h ..\h\config.h ..\h\cstructs.h ..\h\cproto.h ..\h\proto.h\
  14.        ..\h\cpuconf.h ..\h\typedefs.h
  15.  
  16. all:        $(OBJS)
  17.  
  18. $(OBJS):    $(HDRS)
  19.  
  20. rswitch.obj:    $(HDRS) rswitch.asm
  21.         $(AS) $(ASFLAGS) $*.asm,$*.obj;
  22.  
  23. #
  24. # The following routine replaces MSC's stack checking code.  This
  25. # way stack checking can be turned on turning coexpressions
  26. # If this function is not wanted, then make sure that the -Gs
  27. # option is used to turn off C runtime stack checking.
  28.  
  29. rutil.obj:    rutil.asm
  30.         $(AS) $(ASFLAGS) $*.asm,$*.obj;
  31.